strconv.floatInfo.expbits (field)
12 uses
strconv (current package)
atof.go#L372: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L384: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L398: exp = 1<<flt.expbits - 1 + flt.bias
atof.go#L404: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L406: bits |= 1 << flt.mantbits << flt.expbits
atof.go#L499: maxExp := 1<<flt.expbits + flt.bias - 2
atof.go#L553: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L555: bits |= 1 << flt.mantbits << flt.expbits
ftoa.go#L18: expbits uint
ftoa.go#L73: neg := bits>>(flt.expbits+flt.mantbits) != 0
ftoa.go#L74: exp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)
ftoa.go#L78: case 1<<flt.expbits - 1:
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)